home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-21 | 1.1 KB | 37 lines | [TEXT/CWIE] |
- // ===========================================================================
- // CTridentApp.h ©1993 Metrowerks Inc. All rights reserved.
- // ===========================================================================
-
- #pragma once
-
- #include <LApplication.h>
- #include "CTridentView.h"
- #include "CTridentwhoView.h"
- #include "CTridentuptimeView.h"
- class CTridentView;
-
- class CTridentApp : public LApplication{
- public:
- CTridentApp(void);
- virtual ~CTridentApp(void);
-
- virtual Boolean ObeyCommand(CommandT inCommand, void *ioParam = nil);
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled,
- Boolean &outUsesMark,
- Char16 &outMark,
- Str255 outName);
- void CloseWindow(PaneIDT thePane);
- CTridentWindow* LocateWindowBySession(short theSessionID);
- CTridentWindow* LocateWindowByPaneIDT(PaneIDT thePaneIDT);
-
- virtual void HandleAppleEvent(
- const AppleEvent &inAppleEvent,
- AppleEvent &outAEReply,
- AEDesc &outResult,
- long inAENumber) ;
- void HandleNewConnection(ResIDT theWinID);
- short fDocumentCount;
- LList myWindowList;
- protected:
- };